Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

parsegraph-method

Package Overview
Dependencies
Maintainers
2
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parsegraph-method

An object that holds a function

  • 1.4.26
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31
increased by3000%
Maintainers
2
Weekly downloads
 
Created
Source

Method

This contains a single class that represents a method, whose this-argument is saved at construction-time.

import Method from 'parsegraph-method';

const method = new Method();

class Object {
    _onUpdate: Method;

    constructor() {
        this._onUpdate = new Method();
    }

    onUpdate(listener: ()=>void, listenerObj?: object) {
        // Listener this-object is optional.
        this._onUpdate.set(listener, listenerObj);
    }

    update() {
        // Safe to call even if unset.
        this._onUpdate.call();
    }
}

FAQs

Package last updated on 01 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc